home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cstdio.arc / SRC.ARC / STRCPY.C < prev    next >
C/C++ Source or Header  |  1984-07-29  |  218b  |  17 lines

  1. /*    strcpy.c - copy t to s.
  2.     K & R page 101.
  3.     G. R. Mansfield.  84/06/09.
  4.     Ver 1.0-4729.
  5. */
  6.  
  7. char *strcpy(s, t)    /* copy t to s */
  8. char *s, *t;
  9. {
  10.     char *p;
  11.  
  12.     p = s;
  13.     while (*s++ = *t++)
  14.         ;
  15.     return(p);
  16. }
  17.